home *** CD-ROM | disk | FTP | other *** search
/ Atari Forever 4 / Atari Forever 4.zip / Atari Forever 4.iso / SERIE_S / S_913 / WWW130.ZIP / WWW130_3 / IRC / IRC.TXT < prev   
Text File  |  1996-03-29  |  5KB  |  121 lines

  1. IRC.PRG       IRC client for STiK
  2.  
  3. Brief description of IRC commands.
  4.  
  5.     This will attempt to initiate an IRC session with the IRCSERVER
  6. that you have specified in the DEFAULT.cfg file.  It is only a
  7. partial implementation of IRC, it is missing DCC, among other things.
  8. It looks a little like IRC2, but it isn't, however the commands
  9. are similar to IRC2 commands.  Here are the commands that work.
  10.  
  11.     /join #channel      joins a channel
  12.  
  13.     /part               leaves current channel.  At the moment you
  14.     /leave              can't leave any chhannel except the current
  15.                         channel.  If you are on multiple channels
  16.                         you have to join each one then enter
  17.                         /part to leave them.
  18.  
  19.     /ping nick          Pings nick.
  20.  
  21.     /msg nick text      Sends text to nick as a private message
  22.  
  23.     /me text            Sends text as  yournick text
  24.  
  25.     /nick newnick       Change your nick to newnick
  26.  
  27.     /version nick       Gets version info from nick
  28.  
  29.     /finger nick        Gets user info from nick
  30.  
  31.     /quit               Disconnect from the IRC server and
  32.                         exit back to the menu.  If it takes
  33.                         too long to disconnect cleanly,
  34.                         then pressing a key will abort
  35.                         the `clean' disconnection.
  36.  
  37.     /other...
  38.  
  39.         Other / commands also work, but are not interpreted by this
  40.     IRC program.  Instead, they are sent just as you type them.  So
  41.     they need to be in the proper format.  Usually, the proper format
  42.     is simply /command parameter.  eg:-
  43.  
  44.     /whois nick
  45.     /who #channel
  46.     /list #channel
  47.     /mode #channel +o nick
  48.     etc.
  49.  
  50.         Some commands need a ':' before a multiple word parameter, eg:-
  51.  
  52.     /away :Recompiling my IRC program (again)
  53.     /topic #atari :New Software Announcement!
  54.  
  55.     There are some control characters used for IRC special text effects.
  56.     To use them, type one before the effect, and another afterwards to
  57.     turn it off.  For example  ^BBold^B will make the word Bold BOLD.
  58.     Note that these effects don't work in the input line.  Instead you
  59.     see characters from the Atari character set...
  60.  
  61.     These are the ones I know about.
  62.  
  63.     Control B           BOLD text
  64.  
  65.     Control V           Reverse Video text
  66.  
  67.     Control -           Underlined  (Key between '0' and '=')
  68.  
  69.  
  70.     There are also 3 keys that have special meanings internally in IRC.PRG
  71.  
  72.     Control P           Sends a Server ping to the server.
  73.                         This is just to let them know you
  74.                         are still here.  You shouldn't need it.
  75.  
  76.     Control K           This Kicks TCP.  If you have data to send
  77.                         and you are waiting from an ACK from the
  78.                         server, ^K will cause instant retransmission.
  79.                         (Normally TCP retransmission works on a timer)
  80.  
  81.                         If you have no data waiting, ^K simply sends
  82.                         a TCP ACK which has no real value, but might
  83.                         remind the SERVER that you are still there.
  84.  
  85.     Control X           Displays Memory usage details on the screen.
  86.  
  87.  
  88.     *** New Features in IRC ***
  89.  
  90.     Irc now has better multiple channel support.  Now you can be
  91.     in multiple channels and use the left and right arrow keys
  92.     to move through the list.  You can still only quit from
  93.     the current channel.  DCC operations are also in this list.
  94.  
  95.     Irc now supports DCC CHAT and DCC SEND.
  96.     To send a file to a user type /dcc send nick filespec
  97.     To initiate DCC CHAT type /dcc chat nick
  98.  
  99.     When someone tries to send a file to you, or initiate DCC CHAT
  100.     you get a message asking if you want to accept it.  If you answer
  101.     anything but Y or y, the request will be ignored.
  102.  
  103.     To exit DCC at any time, press control C when DCC is the
  104.     current operation.
  105.  
  106.     The byte count display in DCC SEND/RECV does not update
  107.     automatically.  When you change operations with the arrow
  108.     keys, the current status of transfers is displayed..
  109.  
  110.     Please note that there is a pause of a few seconds whenever
  111.     a DCC operation closes.  I'll find a better way of closing
  112.     these conenctions in a future version...
  113.  
  114.  
  115.     Some quirks (non serious bugs I haven't fixed yet).
  116.  
  117.     Text output is quite slow, especially on old ST's with no blitter.
  118. I don't really know what to do about this, but at least it should be
  119. compatible with all ST's.
  120.  
  121.